home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-077.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  117 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12373);
  11.  script_version ("$Revision: 1.5 $");
  12.  if (NASL_LEVEL >= 2191 ) script_cve_id("CAN-2003-0159", "CAN-2003-0356", "CAN-2003-0357", "CAN-2003-0428", "CAN-2003-0429", "CAN-2003-0430", "CAN-2003-0431", "CAN-2003-0432", "CVE-2003-0081");
  13.  
  14.  name["english"] = "RHSA-2003-077: ethereal";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated Ethereal packages fixing a number of remotely exploitable security
  21.   issues are now available.
  22.  
  23.   Ethereal is a package designed for monitoring network traffic.
  24.  
  25.   A number of security issues affect Ethereal. By exploiting these issues it
  26.   may be possible to make Ethereal crash or run arbitrary code by injecting a
  27.   purposefully malformed packet onto the wire, or by convincing someone to
  28.   read a malformed packet trace file.
  29.  
  30.   Ethereal 0.9.9 and earlier allows remote attackers to cause a denial
  31.   of service (crash) and possibly execute arbitrary code via carefully
  32.   crafted SOCKS packets. The Common Vulnerabilities and Exposures project
  33.   (cve.mitre.org) has assigned the name CAN-2003-0081 to this issue.
  34.  
  35.   A heap-based buffer overflow exists in the NTLMSSP code for Ethereal
  36.   0.9.9 and earlier. (CAN-2003-0159)
  37.  
  38.   Multiple off-by-one vulnerabilities exist in Ethereal 0.9.11 and earlier in
  39.   the AIM, GIOP Gryphon, OSPF, PPTP, Quake, Quake2, Quake3, Rsync, SMB, SMPP,
  40.   and TSP dissectors, which do not properly use the tvb_get_nstringz and
  41.   tvb_get_nstringz0 functions. (CAN-2003-0356)
  42.  
  43.   Multiple integer overflow vulnerabilities exist in Ethereal 0.9.11 and
  44.   earlier in the Mount and PPP dissectors. (CAN-2003-0357)
  45.  
  46.   A vulnerability in the DCERPC dissector exists in Ethereal 0.9.12 and
  47.   earlier, allowing remote attackers to cause a denial of service (memory
  48.   consumption) via a certain NDR string. (CAN-2003-0428)
  49.  
  50.   A possible buffer overflow vulnerability exists in Ethereal 0.9.12 and
  51.   earlier, caused by invalid IPv4 or IPv6 prefix lengths and possibly
  52.   triggering a buffer overflow. (CAN-2003-0429)
  53.  
  54.   A vulnerability exists in Ethereal 0.9.12 and earlier, allowing remote
  55.   attackers to cause a denial of service (crash) via an invalid ASN.1 value.
  56.   (CAN-2003-0430)
  57.  
  58.   The tvb_get_nstringz0 function in Ethereal 0.9.12 and earlier does not
  59.   properly handle a zero-length buffer size. (CAN-2003-0431)
  60.  
  61.   Ethereal 0.9.12 and earlier does not handle certain strings properly in the
  62.   BGP, WTP, DNS, 802.11, ISAKMP, WSP, CLNP, ISIS, and RMI dissectors.
  63.   (CAN-2003-0432)
  64.  
  65.   Users of Ethereal should update to these erratum packages containing
  66.   Ethereal version 0.9.13, which are not vulnerable to these issues.
  67.  
  68.  
  69.  
  70.  
  71. Solution : http://rhn.redhat.com/errata/RHSA-2003-077.html
  72. Risk factor : High';
  73.  
  74.  script_description(english:desc["english"]);
  75.  
  76.  summary["english"] = "Check for the version of the ethereal packages";
  77.  script_summary(english:summary["english"]);
  78.  
  79.  script_category(ACT_GATHER_INFO);
  80.  
  81.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  82.  family["english"] = "Red Hat Local Security Checks";
  83.  script_family(english:family["english"]);
  84.  
  85.  script_dependencies("ssh_get_info.nasl");
  86.  
  87.  script_require_keys("Host/RedHat/rpm-list");
  88.  exit(0);
  89. }
  90.  
  91. include("rpm.inc");
  92. if ( rpm_check( reference:"ethereal-0.9.13-1.AS21.1", release:"RHEL2.1") )
  93. {
  94.  security_hole(0);
  95.  exit(0);
  96. }
  97. if ( rpm_check( reference:"ethereal-gnome-0.9.13-1.AS21.1", release:"RHEL2.1") )
  98. {
  99.  security_hole(0);
  100.  exit(0);
  101. }
  102.  
  103. if ( rpm_exists(rpm:"ethereal-", release:"RHEL2.1") )
  104. {
  105.  set_kb_item(name:"CAN-2003-0159", value:TRUE);
  106.  set_kb_item(name:"CAN-2003-0356", value:TRUE);
  107.  set_kb_item(name:"CAN-2003-0357", value:TRUE);
  108.  set_kb_item(name:"CAN-2003-0428", value:TRUE);
  109.  set_kb_item(name:"CAN-2003-0429", value:TRUE);
  110.  set_kb_item(name:"CAN-2003-0430", value:TRUE);
  111.  set_kb_item(name:"CAN-2003-0431", value:TRUE);
  112.  set_kb_item(name:"CAN-2003-0432", value:TRUE);
  113.  set_kb_item(name:"CVE-2003-0081", value:TRUE);
  114. }
  115.  
  116. set_kb_item(name:"RHSA-2003-077", value:TRUE);
  117.